home *** CD-ROM | disk | FTP | other *** search
/ MacHome 1999 February/March / MacHome CD (February and March 1999).iso / Edutainment / INFOHIGHWAYDEMOS / demo / DEMOF1.DCR / 00001.ls next >
Encoding:
Text File  |  1998-09-17  |  418 b   |  28 lines

  1. on initSprites
  2.   repeat with x = 1 to 48
  3.     puppetSprite(x, 0)
  4.     set the visible of sprite x to 1
  5.   end repeat
  6. end
  7.  
  8. on pupetize start, end
  9.   repeat with i = start to end
  10.     puppetSprite(i, 1)
  11.   end repeat
  12. end
  13.  
  14. on dePupetize start, end
  15.   repeat with i = start to end
  16.     puppetSprite(i, 0)
  17.   end repeat
  18. end
  19.  
  20. on exitFrame
  21.   if rollOver(3) then
  22.     go(the frame)
  23.   else
  24.     initSprites()
  25.     go("choix")
  26.   end if
  27. end
  28.